home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / MPW / MPW noweb 2.7 / src / c / strsave.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-30  |  234 b   |  14 lines  |  [TEXT/MPS ]

  1. #line 6 "strsave.nw"
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include "strsave.h"
  6. #include "errors.h"
  7.  
  8. char *strsave (char *s) {
  9.     char *t = malloc (strlen(s)+1);
  10.     checkptr(t);
  11.     strcpy(t,s);
  12.     return t;
  13. }
  14.